:root {
  --text-color: #000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--light-bg-color);
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.contact-hero {
  background: var(--dark-bg-color);
  color: var(--main-color);
  padding: 80px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: var(--sub-text-color);
}

.contact-main {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  color: var(--sub-text-color);
  font-size: 1rem;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.btn-glow {
  padding: 14px;
  background: linear-gradient(135deg, var(--secondary-color), #6c63ff);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(81, 81, 239, 0.3);
  transition: 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(81, 81, 239, 0.5);
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  .contact-main {
    flex-direction: column;
  }
}
